summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/data-room/[projectId]/files/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/evcp/data-room/[projectId]/files/page.tsx')
-rw-r--r--app/[lng]/evcp/data-room/[projectId]/files/page.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/[lng]/evcp/data-room/[projectId]/files/page.tsx b/app/[lng]/evcp/data-room/[projectId]/files/page.tsx
new file mode 100644
index 00000000..baac96ad
--- /dev/null
+++ b/app/[lng]/evcp/data-room/[projectId]/files/page.tsx
@@ -0,0 +1,17 @@
+// app/projects/[projectId]/files/page.tsx
+import { FileManager } from '@/components/file-manager/FileManager';
+
+export default async function ProjectFilesPage({
+ params,
+}: {
+ params: { projectId: string };
+}) {
+
+ const projectId = await params.projectId
+
+ return (
+ <div className="h-full flex flex-col">
+ <FileManager projectId={projectId} />
+ </div>
+ );
+} \ No newline at end of file